home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / CHILDWIN.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-05  |  428 b   |  27 lines

  1. unit Childwin;
  2.  
  3. interface
  4.  
  5. uses Windows, Classes, Graphics, Forms, Controls;
  6.  
  7. type
  8.   TMDIChild = class(TForm)
  9.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.   end;
  15.  
  16. implementation
  17.  
  18. {$R *.DFM}
  19.  
  20.  
  21. procedure TMDIChild.FormClose(Sender: TObject; var Action: TCloseAction);
  22. begin
  23.   Action := caFree;
  24. end;
  25.  
  26. end.
  27.